3.1892 \(\int \sqrt {a+\frac {b}{x^2}} x^2 \, dx\)

Optimal. Leaf size=21 \[ \frac {x^3 \left (a+\frac {b}{x^2}\right )^{3/2}}{3 a} \]

[Out]

1/3*(a+b/x^2)^(3/2)*x^3/a

________________________________________________________________________________________

Rubi [A]  time = 0.01, antiderivative size = 21, normalized size of antiderivative = 1.00, number of steps used = 1, number of rules used = 1, integrand size = 15, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.067, Rules used = {264} \[ \frac {x^3 \left (a+\frac {b}{x^2}\right )^{3/2}}{3 a} \]

Antiderivative was successfully verified.

[In]

Int[Sqrt[a + b/x^2]*x^2,x]

[Out]

((a + b/x^2)^(3/2)*x^3)/(3*a)

Rule 264

Int[((c_.)*(x_))^(m_.)*((a_) + (b_.)*(x_)^(n_))^(p_), x_Symbol] :> Simp[((c*x)^(m + 1)*(a + b*x^n)^(p + 1))/(a
*c*(m + 1)), x] /; FreeQ[{a, b, c, m, n, p}, x] && EqQ[(m + 1)/n + p + 1, 0] && NeQ[m, -1]

Rubi steps

\begin {align*} \int \sqrt {a+\frac {b}{x^2}} x^2 \, dx &=\frac {\left (a+\frac {b}{x^2}\right )^{3/2} x^3}{3 a}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 26, normalized size = 1.24 \[ \frac {x \sqrt {a+\frac {b}{x^2}} \left (a x^2+b\right )}{3 a} \]

Antiderivative was successfully verified.

[In]

Integrate[Sqrt[a + b/x^2]*x^2,x]

[Out]

(Sqrt[a + b/x^2]*x*(b + a*x^2))/(3*a)

________________________________________________________________________________________

fricas [A]  time = 0.89, size = 27, normalized size = 1.29 \[ \frac {{\left (a x^{3} + b x\right )} \sqrt {\frac {a x^{2} + b}{x^{2}}}}{3 \, a} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((a+b/x^2)^(1/2)*x^2,x, algorithm="fricas")

[Out]

1/3*(a*x^3 + b*x)*sqrt((a*x^2 + b)/x^2)/a

________________________________________________________________________________________

giac [A]  time = 0.15, size = 27, normalized size = 1.29 \[ \frac {{\left (a x^{2} + b\right )}^{\frac {3}{2}} \mathrm {sgn}\relax (x)}{3 \, a} - \frac {b^{\frac {3}{2}} \mathrm {sgn}\relax (x)}{3 \, a} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((a+b/x^2)^(1/2)*x^2,x, algorithm="giac")

[Out]

1/3*(a*x^2 + b)^(3/2)*sgn(x)/a - 1/3*b^(3/2)*sgn(x)/a

________________________________________________________________________________________

maple [A]  time = 0.00, size = 27, normalized size = 1.29 \[ \frac {\left (a \,x^{2}+b \right ) \sqrt {\frac {a \,x^{2}+b}{x^{2}}}\, x}{3 a} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int((a+b/x^2)^(1/2)*x^2,x)

[Out]

1/3*(a*x^2+b)/a*x*((a*x^2+b)/x^2)^(1/2)

________________________________________________________________________________________

maxima [A]  time = 0.88, size = 17, normalized size = 0.81 \[ \frac {{\left (a + \frac {b}{x^{2}}\right )}^{\frac {3}{2}} x^{3}}{3 \, a} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((a+b/x^2)^(1/2)*x^2,x, algorithm="maxima")

[Out]

1/3*(a + b/x^2)^(3/2)*x^3/a

________________________________________________________________________________________

mupad [B]  time = 1.24, size = 23, normalized size = 1.10 \[ \sqrt {a+\frac {b}{x^2}}\,\left (\frac {x^3}{3}+\frac {b\,x}{3\,a}\right ) \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(x^2*(a + b/x^2)^(1/2),x)

[Out]

(a + b/x^2)^(1/2)*(x^3/3 + (b*x)/(3*a))

________________________________________________________________________________________

sympy [B]  time = 0.85, size = 41, normalized size = 1.95 \[ \frac {\sqrt {b} x^{2} \sqrt {\frac {a x^{2}}{b} + 1}}{3} + \frac {b^{\frac {3}{2}} \sqrt {\frac {a x^{2}}{b} + 1}}{3 a} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate((a+b/x**2)**(1/2)*x**2,x)

[Out]

sqrt(b)*x**2*sqrt(a*x**2/b + 1)/3 + b**(3/2)*sqrt(a*x**2/b + 1)/(3*a)

________________________________________________________________________________________